Elevate Software


Login Login

ProductsBulletSalesBulletSupportBulletDownloadsBulletAbout





Home » Elevate Software Blog

Icon Elevate Software Blog

Tags Showing all blog entries tagged with "Elevate Web Builder"

Elevate Web Builder 2.05 Build 3 Released
Posted by Tim Young on Fri, Aug 26 2016

Elevate Web Builder 2.05 Build 3 is now available for download. If you're an existing customer, then you should be receiving an email shortly with download instructions. This build contains a bug fix for an issue with OnShow event handlers for controls being triggered during the loading of forms, which is detailed here.

Tags: Elevate Web Builder, New BuildsPermanent Link0 Comments

Elevate Web Builder 2.05 Build 2 Released
Posted by Tim Young on Wed, Aug 24 2016

Elevate Web Builder 2.05 Build 2 is now available for download. If you're an existing customer, then you should be receiving an email shortly with download instructions. This build contains several bug fixes and fixes for missing files for the example projects, which are detailed here.

Tags: Elevate Web Builder, New BuildsPermanent Link0 Comments

Elevate Web Builder 2.05 Released
Posted by Tim Young on Thu, Aug 18 2016

Elevate Web Builder 2.05 is now available for download. If you're an existing customer, then you should be receiving an email shortly with download instructions.

This release contains several bug fixes, which are detailed here. In addition to these bug fixes, there are the following breaking changes and enhancements:

2.05 Breaking Changes
The following are breaking changes in Elevate Web Builder 2.05:
  • Elevate Web Builder now includes explicit database support in the IDE and in the compoonent library/runtime code. This will eliminate the need to define connection information for every defined dataset and, instead, you can define a single database (with connection information) under which multiple datasets can be defined. To support these architectural changes, there is a new Database Manager in the IDE that replaces the DataSet Manager in 2.04 and earlier. The dataset definitions from the prior versions will automatically be upgraded to use the new database format when starting up the 2.05 IDE for the first time. This is done by creating a database with the same name as the dataset.

    You will need to make adjustments to your existing database access code in order to allow them to work with the new architecture. Specifically, you will need to add this line of code before any database access (loading of dataset columns or rows, and/or transaction commits) occurs:

    Database.DatabaseName:=<Database Name>;

    where <Database Name> is the name that of the database that is automatically created by the 2.05 IDE when it is first started (see above). The Database instance in the code above is the global TDatabase instance that is automatically created at application startup, and has not changed from 2.04.

    Finally, the inclusion of explicit database names has caused the URLs used with database access to change, and they now include a "database" parameter with every request. This means that you must use the 2.05 Elevate Web Builder Web Server with any client applications compiled with the 2.05 compiler that perform database access, or you will experience errors. Likewise, if you are not using the Elevate Web Builder Web Server and, instead, are using your own web server application for handling database access, you must handle this new database parameter so that the proper database is being accessed.


  • The TDatabase component now includes a new AutoTransactions property that allows you to perform inserts, updates, and deletes under transaction control without having to use explicit transactions. This property has a default value of True, so if you already use explicit transactions or do not want inserts, updates, and deletes to be committed to the web server application, then you should set this property to False before any such operations are performed.


  • The URLS for BLOB loading have changed and are now always specified as relative paths instead of absolute paths. The use of absolute paths was a problem in 2.04 and earlier because it would cause cross-origin BLOB load requests to fail because they were referencing the wrong protocol/host name/port combination.


  • The DataSets Resource Name setting has been renamed to the Databases Resource Name setting in both the external Elevate Web Builder Web Server and the internal web server in the IDE (Environment Options dialog). In addition, the default value for this setting has been changed from 'datasets' to 'databases'.


  • The Custom DataSets Resource Name setting has been renamed to the Database Modules Resource Name setting in both the external Elevate Web Builder Web Server and the internal web server in the IDE (Environment Options dialog). In addition, the default value for this setting has been changed from 'customdatasets' to 'databasemodules'.


  • The Custom DataSets Module setting has been removed from both the external Elevate Web Builder Web Server and the internal web server in the IDE (Environment Options dialog). The Custom DataSets Module setting was redundant because any module can be referenced directly via the TDatabase BaseURL property in client applications.


  • All example applications included with Elevate Web Builder that use databases and datasets have been updated to reflect the new database architecture. You should re-install all example application using the instructions located in the manual under the Example Applications topic in order to make sure that the example applications work properly when compiled with Elevate Web Builder 2.05 or higher.


  • The command-line compiler (ewbcc.exe) options have changed. There are new options for external files, HTML loader and Javascript output file names, and icon font options. Please execute the command-line compiler without any arguments in order to see an explanation of the parameters and how they should be formatted.


  • Data-bound controls no longer overwrite their non-bound textual representation at design-time in the form designer. For example, a data-bound TLabel control with a Caption property value of 'Test' will still display 'Test' at design-time, even if it is bound to a dataset column. Previously, the the TLabel would display an empty string ('') when the form was re-loaded.


  • The default indeterminate behavior for the TRadioButton control has changed. Now you have to set the SelectionState property to ssIndeterminate for the TRadioButton control whose SelectionState is equal to ssSelected in order for the group state of multiple TRadioButton controls to be changed to ssIndeterminate. As long as you have a TRadioButton control with a SelectionState equal to ssSelected, you cannot change the non-selected TRadioButton controls' SelectionState property to ssIndeterminate, only ssSelected or ssUnSelected.


  • In all controls, the Focused control interface state now takes precedence over the Hot control interface state, and the Error control interface state now takes precedence over all other control interface states.


  • The default key press interval for list/combo controls has been reduced from 500ms down to 200ms.


  • The ShowMessage procedure now includes an optional DlgCaption parameter that can be used to set the caption for the message dialog. This is a breaking change because the DlgCaption parameter was inserted before the existing animation parameters.


  • The Minimized state has been removed from the TPagePanel control interface. Also, the ApplyProperties.Border property for the Client element has been changed to False, so existing TPagePanel controls will need to have their interfaces re-intialized in the IDE via the layout toolbar in the form designer. Failure to do so will result in the TPagePanel controls losing their border.


  • A new LeftGutter element has been added to the TTabBar control interface to accomodate padding the tabs on the left, and the existing Gutter element has been re-named to RightGutter. Also, a NoTabs state has been added to the control interface to accomodate a new way of handling hidding the tabs for page controls.


  • The Padding and Margins properties have been changed for the Base and Client elements of the TDialog control interface, and a new Grip element has been added for implementing user sizing.


  • A new Grip element has been added to the TSizeGrip control interface to store the sizing grip icon.


  • New Icon and FontIcon elements have been added to the TDialogCaptionBar and TPanelCaptionBar control interfaces to allow for specifying icons in the caption bars of dialog and panel controls.


  • A new Client element has been added to the TButton control interface to allow for the centering of the icon and caption as a group, resulting in a better look and feel.


  • A new TGridMultiLineEdit control interface has been added for multi-line edit controls in grid controls.
2.05 Improvements
The following are included improvements in Elevate Web Builder 2.05:
  • There are new output file name settings for the HTML loader and Javascript files emitted by the compiler. You can find them in the Project Options dialog in the IDE.


  • The IDE now contains a new Database Manager in place of the DataSet Manager that existed in 2.04 and earlier.


  • The IDE now supports instantiating TDatabase component instances as containers for TDataSet component instances, as well as any other non-visual component. Please see the Creating and Using Databases topic in the manual for more information on creating and using TDatabase instances.


  • The TDatabase component now includes an AutoTransactions property for enabling automatic transactions for row inserts, updates, or deletes.


  • The IDE now permits TComponent reference properties, such as the DataSet property for data-bound controls, to reference TComponent instances on other form or database instances at design-time.


  • There is a new Master-Detail Database Example included with Elevate Web Builder that shows how to use the new automatic transactions for updating datasets in a master-detail setup.


  • A new "sizing grip" icon has been added to the EWB Icons icon font for use with the TDialog and TSizeGrip controls.


  • The TGridColumn ControlType property now includes the ctMultiLineEdit member for specifying that a grid column should be edited using a multi-line edit control. In addition, there is a new TGridColumn Wrap property for specifying if the content in the column should wrap to multiple lines when exceeding the width of the column, and a corresponding TGridColumn Header Wrap property for the grid column header.


  • The Ctrl-Alt-Down and Ctrl-Alt-Up keys now recursively expand and collapse nested properties in the Object Inspector.


  • The TLink control now includes TabStop and TabOrder properties so that links can participate in the tabbling flow of controls.


  • The TEditComboBox, TDateEditComboBox, TDialogEditComboBox, TFileComboBox, and TButtonComboBox controls now contain new ShowDropDown and HideDropDown methods for manually showing and hiding the associated drop-down control.


  • The CaptionBar properties of the TPanel and TDialog controls now include Icon and FontIcon properties for specifying an icon.


  • The TDialog control now includes a Sizable property for specifying whether the dialog should be sizable by the user via a sizing grip in the bottom-right corner of the dialog.


  • The TButton and TIconButton controls now include a FontIcon property for modifying the properties of an icon font when one is used as the icon in the control.


  • The TPagePanel control now includes a Border for specifying the border and a Gutter property for specifying the amount of space to show the left of the tabs for the page panel.


  • The TComponent class now includes a new FindComponent method.


Tags: Elevate Web Builder, New ReleasesPermanent Link2 Comments

Elevate Web Builder 2.04 Released
Posted by Tim Young on Tue, Dec 29 2015

Elevate Web Builder 2.04 is now available for download. If you're an existing customer, then you should be receiving an email shortly with download instructions.

This release contains several bug fixes, which are detailed here. In addition to these bug fixes, there are the following breaking changes and enhancements:

2.04 Breaking Changes
The following are breaking changes in Elevate Web Builder 2.04:
  • The TBindableControl component, the basis for all data-bound controls, used to raise an exception when updating the current row in the dataset when focus was lost on the control, but it now just sets the Error property to True. This was done to avoid infinite recursion if a message dialog was displayed due to the exception.


  • The TPagePanel FirstPage, PriorPage, NextPage, and LastPage methods were renamed to GetFirstPage, GetPriorPage, GetNextPage, and GetLastPage, and made protected instead of public. In addition, the GetLeftMostPage method is also now protected instead of public.


  • The TToolBar PriorButton and NextButton methods were renamed to GetPriorButton and GetNextButton, and made protected instead of public. In addition, the GetLeftMostButton method is also now protected instead of public.


  • The TDataSetToolBar Buttons property has a new FindButton property that defaults to being visible, so it will need to be explicitly hidden in existing projects if you do not want to implement any search functionality.


  • A FontIcon element was added as a child element of all Icon elements in any applicable control interfaces in order to implement icon font support.


  • The TPagePanel control interface now includes an additional Minimized state to deal with top border changes when no tabs are shown in the TPagePanel control.


  • The TPagePanelNavBar control interface now includes an additional Minimized state to deal with margin changes when no tabs are shownin the TPagePanel control.
2.04 Improvements
The following are included improvements in Elevate Web Builder 2.04:
  • Elevate Web Builder now uses an (included) icon font for all icons in the control interfaces. This icon font is a scaled-down version of the Font Awesome icon font, and includes 395 icons that you can easily use in your applications. Please see the Icon Library topic in the manual for more information on how the font icons are used.


  • You can now include web fonts in the external files for each project, meaning that you can use open-source web fonts like Open Sans/Roboto from Google Fonts with your projects.


  • There is a new caption property editor in the IDE that makes it easier to deal with multi-line captions for controls like the TLabel control.


  • There is a new content property editor in the IDE for editing the content of control interfaces as text or a symbol (used with icon fonts). This property editor also contains an interactive symbol browser for easily selecting the desired icon from an icon font.


  • There is a new Find in Units option in the IDE for searching for text across multiple source units.


  • The Alt-Down/Keypad Plus and Alt-Up/Keypad Plus keys now expand and collapse nested properties in the Object Inspector.


  • There is a new Open Icon Library option on the Library menu that can be used to open up the icon library for editing, and it is sensitive to customized icon libraries in the active project's search path. Please see the Opening the Icon Library topic in the manual for more information.


  • The compiler now includes better compression for the emitted JS, saving an extra ~10-20% in size, depending upon the application.


  • There is a new option in the control interface editor for resetting an element's properties to their default values.


  • There are new (optional) AnimationStyle and AnimationDuration parameters for the ShowMessage, MessageDlg, and ShowMessage procedures for animating the showing (not hiding) of the message and progress dialogs.


  • There is a new TSizeGrip control that allows you to size any container on which the control is placed.


  • There is a new TIcon FontIcon property for specifying additional font icon properties.


  • There are new TPagePanel FirstPage, PriorPage, NextPage, and LastPage methods for navigating the pages in the page panel control.


  • There is a new TPagePanel TabsVisible property for specifying whether the tabs should be shown.


  • There is a new TPagePanel PageNavigation property for specifying whether the page navigator bar should be visible at run-time.


  • There is a new TPage Animations property and OnAnimationComplete/OnAnimationsComplete events for animating the pages of a page panel control.


  • The TDataSetToolBar Buttons property has a new FindButton property for allowing developer-defined search operations from the dataset toolbar.


  • There is a new TListBox ReadOnly property.


  • There are new TWriter BooleanValue, DateTimeValue, FloatValue, IntegerValue, NullValue, StringValue, CancelNewLine, and Literal methods for handling array element persistence, the cancellation new lines, and literal insertion.


  • There are new LoginClient and LoginModule example projects for showing how to handle login requests in an Elevate Web Builder client application and web server module.


Tags: Elevate Web Builder, New ReleasesPermanent Link0 Comments

Elevate Web Builder 2.03 Released
Posted by Tim Young on Thu, Nov 12 2015

Elevate Web Builder 2.03 is now available for download. If you're an existing customer, then you should be receiving an email shortly with download instructions.

This release contains several bug fixes, which are detailed here. In addition to these bug fixes, there are the following breaking changes and enhancements:

2.03 Breaking Changes
The following are breaking changes in Elevate Web Builder 2.03:
  • There is a new Automatically load custom control interfaces in project search paths option in the Environment Options that, when enabled, causes the IDE to automatically load any custom control interface files located in the project's compiler search paths whenever a project is opened in the IDE. This option is enabled, by default, which could cause the forms to appear differently in the form designer than in prior releases. Also, if you have previously added custom control interface paths to the component library's search paths (also in the Environment Options dialog), you should move these paths into your application project's compiler search paths in order to allow this new functionality to work.


  • The Random function has been changed, and now returns a pseudorandom integer value between the from and to parameters (default 0 and High(Integer), respectively). The previous version of the function returned a floating-point value between 0 and 1, which was generally not as useful.
2.03 Improvements
The following are included improvements in Elevate Web Builder 2.03:
  • The TDataColumn class now has two new properties, Calculated and ReadOnly, for defining calculated and read-only columns, respectively. For more information on calculated columns, please see the Calculated Columns topic in the manual.


  • There is a new TAlertLabel control for showing alerts that can be closed by the user.


  • There is a new TAddress class and global Address instance variable in the WebComps unit for working with the browser address bar. You can use this functionality to provide anchor (#) manipulation and handling in your application. Anchors are useful for allowing forward/back navigation of various areas in your application via the browser because they do not cause the application to be unloaded during navigation.


  • There is a new ActivateOnClick property for the TBasicPanel, TPanel, and TScrollPanel controls that allows you to specify that you want any clicks on the container control, or any child controls contained within it, should activate (bring forward in the stacking order) the panel.


  • There is a new TGrid ColumnHeadersHeight property for specifying the height of the grid column headers.


  • There is a new TModalOverlay CloseOnClick property for specifying that the modal overlay should close all modal forms when clicked (default is False).


  • There is a new TCalendar DefaultView property for specifying the default (and minimum allowed) view for the calendar. This is useful for allowing the user to select a month, year, or decade. In addition, the TGridColumn control has additional calendar properties, including a calendar default view property.


  • There is a new TControl SlideTo method for performing an animated slide to a specific location.


  • There is a new OnAnimationsComplete event for all controls that support animation. This event is fired when all active animations complete, which is useful when executing multiple, simultaneous animations with a control.


  • There is a new Application Viewport ScrollBy method for programmatically scrolling the browser viewport.


  • There is a new Application IdleTimeout property and OnIdle event for handling inactivity (no keyboard, mouse, or touch actions) timeouts in your application.


  • The IDE's Run menu now contains a Parameters menu option that can be used to specify parameters to the URL used for running the appliction in the internal browser in the IDE.


  • The Project Manager now includes an Open Project Folder button and context menu item.


Tags: Elevate Web Builder, New ReleasesPermanent Link0 Comments

Elevate Web Builder 2.02 Build 4 Released
Posted by Tim Young on Tue, Oct 27 2015

Elevate Web Builder 2.02 Build 4 is now available for download. If you're an existing customer, then you should be receiving an email shortly with download instructions. This build contains several bug fixes, which are detailed here.

Tags: Elevate Web Builder, New BuildsPermanent Link0 Comments


Previous Entries: 1-6 7-12 13-18 19-24 25-30 31-36 37-42 43-48 49-54 55-60 61-66 67-72 73-78 79-84
Image